/* Reset box-sizing and remove default margins/padding */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ensure the structure (main, footer) is visible */
main, footer {
    opacity: 1; /* Structure is visible */
}

/* Footer styling */
footer {
    position: relative;
    background-color: #333; /* Adjust to your desired background color */
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
}

footer p {
    text-align: center;
    font-size: 20px;
    color: #fff;
    opacity: 0;
}

/* Initial state: hidden */
main *:not(main),
footer h3,
footer ul li,
footer p,
#wrapperbottom h3,
#wrapperbottom ul,
#wrapperbottom li {
    opacity: 0;
    transform: translateY(-20px); /* Adjust as needed */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Visible state: fade-in */
main *:not(main).visible,
footer h3.visible,
footer ul li.visible,
footer p.visible,
#wrapperbottom h3.visible,
#wrapperbottom ul.visible,
#wrapperbottom li.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Header falling in from the top */
header {
    position: relative; /* Ensure it is positioned correctly */
    z-index: 200; /* Ensure it is above other elements */
    background-color: #ffffff;
    color: #DDB983;
    transform: translateY(-400px); /* Start off-screen above the viewport */
    animation: fallIn 1s ease-out forwards; /* Falling animation */
}

/* Keyframes for the falling animation */
@keyframes fallIn {
    to {
        transform: translateY(0); /* Reset position */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Optional: Adds a slight upward motion */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
    opacity: 1;
}

/* Hide the content inside each section initially */
main *:not(main),
footer *:not(footer) {
    opacity: 0;
    transform: translateY(-20px); /* Slight offset for animation */
    transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and movement */
}

/* Class to make content visible */
.visible {
    opacity: 1;
    transform: translateY(0); /* Reset position */
}

/* Body styling */
body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #000000;
    margin: 0;
}

/* Header link styling */
header a {
    text-decoration: none;
    color: #DDB983;
}

header a:link,
header a:visited {
    color: #DDB983;
}

header a:hover {
    color: #c4a26e;
}

/* Background styling */
#body-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DDB983;
    z-index: -1; /* Ensure it stays behind other content */
}

#wrapper {
    width: 90%;
    margin-bottom: 5%;
    margin-left: auto;
    margin-right: auto;
    background-color: #F5f5f5;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 2%;
    box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.2), /* bottom shadow */ 
    -4px 0 10px rgba(0, 0, 0, 0.2), /* left shadow */ 
    4px 0 10px rgba(0, 0, 0, 0.2); /* right shadow */ 
    clip-path: inset(0 -40px -40px -40px); /* remove top shadow */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
}

.container {
    width: 100%;
    margin-bottom: 5%;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    position: relative;
    box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.2), /* bottom shadow */ 
    -4px 0 10px rgba(0, 0, 0, 0.2), /* left shadow */ 
    4px 0 10px rgba(0, 0, 0, 0.2); /* right shadow */ 
    clip-path: inset(0 -40px -40px -40px); /* remove top shadow */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
    margin-top: -23vw; /* Reset margin-top */
    padding-top: calc(23vw + 50px); /* Match the height of IntroImageContact and nav */
}


.Left-Formatting {
    align-items: Left; /* Center horizontally */
    justify-content: Left; /* Center vertically (if needed) */
    text-align: Left; /* Center text inside the Info-Box */
}

.Center-Formatting {
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically (if needed) */
    text-align: center; /* Center text inside the Info-Box */
    padding-bottom: 40px;
}


.container p {
    max-width: 700px; /* Set the maximum width */
    margin: 0 auto; /* Center the element horizontally */
    text-align: center; /* Center the text inside the element */
    color: #333; /* Keep the existing color */
    margin-top: 10px;
    font-size: 15px;
}


/* Full-page overlay */
#form-shutdown {
    position: fixed; /* Ensure it covers the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 69, 69, 0.8); /* Dark transparent background */
    z-index: 100; /* Ensure it stays above all other elements */
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially invisible */
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; /* Smooth fade-in/out */
}

/* Show the overlay */
#form-shutdown.show {
    visibility: visible;
    opacity: 1;
}

.ribbon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(23vw + 70px + 40px); /* Position it 20px below the IntroImageContact */
    left: 0;
    width: 100%; /* Extend beyond the screen width */
    height: 100px;
    background-color: red; /* Ribbon color */
    color: white; /* Text color */
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding: 10px 0; /* Add padding for the ribbon height */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Optional: Add shadow for depth */
    z-index: 300; /* Ensure it stays above the overlay */
    opacity: 0; /* Start fully transparent */
    transform: translateY(-40px); /* Start slightly above its final position */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Smooth transition */
}

.ribbon.fade-in {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to its final position */
}

/* Ribbon text */
.ribbon span {
    text-align: center;
}


/* Keyframes for the fade-in animation */
@keyframes fadeInRibbon {
    0% {
        opacity: 0;
        transform: translateY(-20px); /* Start slightly above */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Move to its final position */
    }
}


.IntroImageContact{
        height: 23vw;
        margin-top: 57px;
        text-align: right;
        background-color: #ffffff;
        background-image: url(../LOGOS/Header-Logos/ContactLOGO.png), url(../LOGOS/Header-Logos/DannyMAIN.png);
        background-repeat: no-repeat, no-repeat;
        background-position: 25vw, left;
        background-size: 53vw 6.7vw, 23vw 23vw;
        margin-top: 70px;
        position: relative;
        border-bottom: #333 2px solid;
        box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.2), /* bottom shadow */ 
        -4px 0 30px rgba(0, 0, 0, 0.2), /* left shadow */ 
        4px 0 30px rgba(0, 0, 0, 0.2); /* right shadow */ 
        clip-path: inset(0 -40px -40px -40px); /* remove top shadow */
        z-index: 200;
    }
    
.content {
    height: 250px;
    padding-top: 2em;
    padding-left: 8em;
    padding-bottom: 2em;
    margin-bottom: 5%;
}

.LOGOnavMoveLeft {
    justify-content: left;
}  


nav1 {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space out items horizontally */
    font-weight: bold;
    background-color: #ffffff;
    margin: 0;
    padding: 0 1em;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    border-bottom: 2px solid #333;
    border-top: 5px solid #DDB983;
    z-index: 1000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav1 p {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 1.2em;
    z-index: 1000;
}

nav1 ul {
    list-style: none;
    margin: 0;
    font-size: 1.2em;
    z-index: 1000;
    display: flex;
    align-items: center; /* Center items vertically */
}

nav1 li {
    display: inline-block;
    margin: 0 20px;
    z-index: 1000;
}

nav1 a {
    text-decoration: none;
    display: flex;
    align-items: center; /* Center items vertically */
    background-repeat: no-repeat;
    color: white;
    font-size: 18px;
    z-index: 1000;
}

nav1 a:link {
    color: #3A3A3A;
}

nav1 a:visited {
    color: #3A3A3A;
}

nav1 a:hover {
    color: #c4a26e;
}

nav1 p a img {
    display: block;
    margin: auto 0; /* Center the image vertically */
}

@media (max-width: 879px) {
    nav1 {
        display: flex;
        justify-content: space-between; /* Ensure the menu button is on the right */
    }
    nav2 {
        display: none;
    }
}

@media (min-width: 879px) {
    nav1 {
        display: none;
    }
    nav2 {
        display: block;
    }
}


nav2 {
    font-weight: bold;
    background-color: #ffffff;
    margin: 0;
    padding: 0 1em;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    border-bottom: 4px solid #333;
    border-top: 5px solid #DDB983;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Create two columns with the image in the center */
    align-items: center; /* Center items vertically */
    z-index: 998; /* Lower z-index than the sidebar */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav2 .nav-left,
nav2 .nav-right {
    align-items: center; /* Center items vertically */
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

nav2 .nav-left ul,
nav2 .nav-right ul {
    align-items: center; /* Center items vertically */
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

nav2 .nav-left ul {
    justify-content: flex-end; /* Align items to the end of the column */
}

nav2 .nav-right ul {
    justify-content: flex-start; /* Align items to the start of the column */
}

nav2 .nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav2 p {
    list-style: none;
    font-size: 1.2em;
    z-index: 998; /* Lower z-index than the sidebar */
    margin: 0 40px; /* Add margin to create space between the image and the links */
    padding: 0; /* Remove any default padding */
}

nav2 p a img {
    transform: translateY(0); /* Ensure the image is centered vertically */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
}

nav2 ul {
    list-style: none;
    display: flex;
    align-items: center; /* Center items vertically */
    font-size: 1.2em;
    z-index: 998; /* Lower z-index than the sidebar */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
}

nav2 li {
    display: inline-block;
    line-height: 50px; /* Ensure the links are centered vertically */
    margin: 0 20px; /* Adjust margin to position links away from the center */
    z-index: 998; /* Lower z-index than the sidebar */
}

nav2 a {
    text-decoration: none;
    display: flex;
    align-items: center; /* Center items vertically */
    color: #3A3A3A;
    font-size: 18px;
    z-index: 998; /* Lower z-index than the sidebar */
}

nav2 a:hover {
    color: #c4a26e;
}


.sidebar {
    position: fixed;
    top: 0;
    right: -250px; /* Start off-screen on the right */
    height: 100%;
    width: 250px;
    transition: right 0.5s ease, visibility 0s 1.5s, opacity 0.5s ease; /* Add visibility and opacity transitions */
    z-index: 1001; /* Higher z-index than the nav elements */
    background-color: #ffffff; /* Solid background color */
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Evenly space out the links */
    padding-top: 40px;
    padding-bottom: 40%; /* Add padding to the bottom */
    padding-left: 30px;
    overflow: hidden; /* Disable scrolling */
    visibility: hidden;
    opacity: 0;
}

.sidebar.show {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.sidebar ul {
    list-style: none;
    padding-bottom: 20%;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Evenly space out the links */
    height: 100%; /* Ensure the ul takes the full height of the sidebar */
}

.sidebar li {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
}

.sidebar a {
    width: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #3A3A3A;
    font-size: 18px;
}

.sidebar a:hover {
    color: #c4a26e;
}

.sidebar li a svg:hover {
    cursor: pointer;
}

/* Disable scrolling */
.no-scroll {
    overflow: hidden;
    height: 100%; /* Ensure the body takes the full height */
}

@media (max-width: 458px) {
    .sidebar {
        width: 100%; /* Make the sidebar cover the whole screen */
        align-items: center; /* Center the content horizontally */
    }

    .sidebar ul {
        align-items: center; /* Center the content horizontally */
    }

    .sidebar li {
        text-align: center; /* Center the text */
        transform: translateX(-15px); /* Offset the content 5 pixels to the left */
    }
}


.Info-Box {
    border: 2px solid #000000; /* Border color */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Add padding inside the box */
    margin-bottom: 45px;
    margin: 0 auto; /* Center horizontally if flexbox is not used */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    max-width: 800px; /* Optional: Limit the width of the section */
    text-align: center; /* Center-align the content */
    align-content: center;
}

    
    h1 {
        text-align: center;
        color: #000000;
        font-size: 27px;
    }

    
    form {
        display: flex;
        flex-direction: column;
    }
    
    label {
        margin-top: 20px;
        margin-bottom: 5px;
        color: #333;
    }
    
    input, textarea, select {
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    button {
        padding: 10px 20px;
        margin-top: 20px;
        background-color: #DDB983;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    button:hover {
        background-color: #c4a26e;
    }

/* Loading Screen Styles */
#loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000; /* Ensure it stays on top */
        opacity: 0;
        visibility: hidden; /* Ensure it's hidden by default */
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    }
    
    #loading-screen.show {
        opacity: 1;
        visibility: visible; /* Make it visible when showing */
    }
    
    .loading-circle {
        border: 8px solid #f3f3f3;
        border-top: 8px solid #DDB983;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* Success Sign Styles */
    #success-sign {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background-color: #4CAF50;
        color: white;
        padding: 20px 40px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden; /* Ensure it's hidden by default */
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s 0.5s;
    }
    
    #success-sign.show {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible; /* Make it visible when showing */
    }
    
    #success-sign.hide {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        visibility: hidden; /* Hide it after the transition */
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s 0.5s;
    }
    
    /* Failure Sign Styles */
    #failure-sign {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background-color: #f44336; /* Red color for failure */
        color: white;
        padding: 20px 40px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden; /* Ensure it's hidden by default */
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s 0.5s;
    }
    
    #failure-sign.show {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible; /* Make it visible when showing */
    }
    
    #failure-sign.hide {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        visibility: hidden; /* Hide it after the transition */
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s 0.5s;
    }

    #wrapperbottom {
        background-color: #333;
        color: white;
        padding: 20px 0;
        text-align: center;
    }


    #wrapperbottom,
    footer {
    position: relative; /* Ensure they are positioned relative to the page */
    z-index: 200; /* Higher than the shutdown screen */
}

    
    .footer-section {
        display: flex; /* Use Flexbox for layout */
        justify-content: space-between; /* Space out the columns */
        align-items: stretch; /* Align all columns at the top */
        flex-wrap: nowrap; /* Prevent wrapping */
        gap: 0px; /* Add spacing between columns */
        font-family: 'Times New Roman', Times, serif;
    }
    
    .footer-column {
        flex: 1;
        min-width: 0px;
        padding: 0; /* Reset padding */
        margin: 0; /* Reset margin */
        display: flex;
        flex-direction: column; /* Ensure content stacks vertically */
        justify-content: flex-start; /* Align content at the top */
    }
    
    .footer-column h3 {
        margin: 0 0 10px 0;
        margin-bottom: 20px;
        text-decoration: underline;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-column ul li {
        display: block;
        margin: 15px 0 !important; /* Force 10px spacing above and below each link */
        padding: 0 !important; /* Ensure no extra padding */
        text-align: center; /* Center align text */
    }
    
    .footer-column ul li a {
        color: white;
        text-decoration: none;
        font-size: 14px;
    }
    
    .footer-column ul li a:hover {
        text-decoration: underline;
    }
    
    .footer-section2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 0px;
    }
    
    .footer-column2 {
        flex: 1;
        min-width: 0px;
    }
    
        /* Copyright Section */
        .copyright {
            text-align: center;
            background-color: #333; /* Dark background for contrast */
            color: white; /* White text for readability */
            padding: 10 0; /* Add some vertical spacing */
            font-size: 20px; /* Slightly smaller font size */    border-top: 1px solid #555; /* Optional: Add a subtle border at the top */
            font-family: 'Times New Roman', Times, serif;
        }
        
        .copyright p {
            margin: 0; /* Remove default margin */
        }
    
    .footer-section {
        display: flex; /* Use Flexbox for layout */
        justify-content: space-between; /* Space out the columns */
        align-items: flex-start; /* Align all columns at the top */
        flex-wrap: nowrap; /* Prevent wrapping */
        gap: 0px; /* Add spacing between columns */
    }
    
    .footer-column {
        flex: 1; /* Make all columns equal width */
        min-width: 0px; /* Prevent columns from shrinking */
        padding: 0; /* Reset padding */
        margin: 0; /* Reset margin */
        display: flex;
        flex-direction: column; /* Stack content vertically */
        justify-content: flex-start; /* Align content at the top */
    }
    
    .footer-column h3 {
        margin: 0 0 10px 0; /* Add consistent spacing below the heading */
        padding: 0; /* Remove any padding */
    }
    
    .footer-column ul {
        margin: 0; /* Remove default margin */
        padding: 0; /* Remove default padding */
        list-style: none; /* Remove bullet points */
    }
    
    .footer-column ul li {
        margin: 0; /* Remove default margin */
        padding: 0; /* Remove default padding */
        text-align: center; /* Center align text */
    }
    
    @media (max-width: 495px) {
        body {
            font-size: 14px; /* Adjust the base font size for smaller screens */
        }
    
        .footer-column h3 {
            font-size: 16px; /* Scale down the footer headings */
        }
    
        .footer-column ul li a {
            font-size: 12px; /* Scale down the footer links */
        }
    
        .copyright {
            font-size: 14px; /* Scale down the copyright text */
        }

        footer p{
            font-size: 14px; /* Scale down the footer text */
        }

    }

    
    /* Adjustments for larger screens */
    @media (min-width: 768px) {
        #success-sign, #failure-sign {
            padding: 30px 60px; /* Increase padding for larger screens */
            font-size: 20px; /* Increase font size for larger screens */
        }
    }
    
    @media (min-width: 1024px) {
        #success-sign, #failure-sign {
            padding: 40px 80px; /* Further increase padding for larger screens */
            font-size: 24px; /* Further increase font size for larger screens */
        }
    }

@media(max-height: 656px), (max-width: 457px){
        nav1 p a img { 
                width: 280px;
                height: 23.5px;
        }
        nav1, nav2 {
                height: 67px;
        }
        .IntroImageContact{
                margin-top: 67px;
        }
}
@media(max-height:626px), (max-width:437px){
        nav1 p a img { 
                width: 260px; /* Adjust the width as needed */ 
                height: 21.5px; /* Adjust the height as needed */ 
        }
        nav1, nav2 {
                height: 64px;
        }
        .IntroImageContact{
                margin-top: 64px;
        }
}
@media(max-height: 596px), (max-width:417px){
        nav1 p a img { 
                width: 240px; /* Adjust the width as needed */ 
                height: 19.5px; /* Adjust the height as needed */ 
        }
        nav1, nav2 {
                height: 61px;
        }
        .IntroImageContact{
                margin-top: 61px;
        }
}
@media(max-height: 566px), (max-width:397px){
        nav1 p a img { 
                width: 220px; /* Adjust the width as needed */ 
                height: 17.5px; /* Adjust the height as needed */ 
        }
        nav1, nav2 {
                height: 58px;
        }
        .IntroImageContact{
                margin-top: 58px;
        }
}
@media(max-height: 536px), (max-width:377px){
        nav1 p a img { 
                width: 200px; /* Adjust the width as needed */ 
                height: 15.5px; /* Adjust the height as needed */ 
        }
        nav1, nav2 {
                height: 55px;
        }
        .IntroImageContact{
                margin-top: 55px;
        }
}
@media(max-height: 506px), (max-width:357px){
        nav1 p a img { 
                width: 180px; /* Adjust the width as needed */ 
                height: 13.5px; /* Adjust the height as needed */ 
        }
        nav1, nav2 {
                height: 52px;
        }
        .IntroImageContact{
                margin-top: 52px;
        }
}
@media(max-height: 476px), (max-width:321px){
        nav1 p a img { 
                width: 160px; /* Adjust the width as needed */ 
                height: 11.5px; /* Adjust the height as needed */ 
        }
        nav1, nav2 {
                height: 52px;
        }
        .IntroImageBiography{
                margin-top: 52px;
        }
}


@media(max-width: 480px) {
        nav1, nav2 {
                border-top: none
        }
}